[USER (data scientist)]: Hey, I've got this dataset of laptops with prices in some other currency. I need to find laptops that are good for business use. Can you help me out? 
 
[YOU (AI assistant)]: Of course! Let's start by converting the laptop prices to US dollars. What's the conversion rate? 
 
[USER (data scientist)]: Oh, it's 1 unit of that currency equals 0.0001 US dollars. Please load the 'laptops_price.csv' dataset into a DataFrame and add a new column 'Price_USD' by converting 'Price' to USD, then display the modified DataFrame and save it as a pickle file.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

print(laptops_price)

# save data
pickle.dump(laptops_price,open("./pred_result/laptops_price.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Alright, let's convert those prices. 
